home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España: xRes 2.0 / macformat_xres.iso / Gráficos 3D / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7006.txt < prev    next >
Text File  |  1996-03-22  |  501b  |  25 lines

  1. Converts RGB values to color palette index.
  2.  
  3. RGBToColorIndex(red,green,blue:LONGINT;VAR color:INTEGER);
  4.  
  5. Converts color palette index to RGB values.
  6.  
  7. ColorIndexToRGB(color:INTEGER;VAR red,green,blue:LONGINT);
  8.  
  9. Pauses for n seconds
  10.  
  11. Wait(Seconds : INTEGER);
  12.  
  13. Returns the current date and time as a string.
  14.  
  15. Date(DateFormat,InfoFormat : INTEGER): STRING;
  16.  
  17. Used in debugging.  If an error has occurred then FndError = TRUE, otherwise FndError = FALSE
  18.  
  19. FndError : BOOLEAN;
  20.  
  21. Makes a beep sound.
  22.  
  23. SysBeep;
  24.  
  25.